home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / cmds / ftp / ftp_var.h < prev    next >
Encoding:
C/C++ Source or Header  |  1989-07-27  |  4.0 KB  |  115 lines

  1. /*
  2.  * Copyright (c) 1985 Regents of the University of California.
  3.  * All rights reserved.
  4.  *
  5.  * Redistribution and use in source and binary forms are permitted
  6.  * provided that this notice is preserved and that due credit is given
  7.  * to the University of California at Berkeley. The name of the University
  8.  * may not be used to endorse or promote products derived from this
  9.  * software without specific prior written permission. This software
  10.  * is provided ``as is'' without express or implied warranty.
  11.  *
  12.  *    @(#)ftp_var.h    5.4 (Berkeley) 3/14/88
  13.  */
  14.  
  15. #ifndef __STDC__
  16. /* The  ds3100  C compiler can't handle pointers to void */
  17. #define void int
  18. #endif
  19.  
  20. /*
  21.  * FTP global variables.
  22.  */
  23.  
  24. /*
  25.  * Options and other state info.
  26.  */
  27. int    trace;            /* trace packets exchanged */
  28. int    hash;            /* print # for each buffer transferred */
  29. int    sendport;        /* use PORT cmd for each data connection */
  30. int    verbose;        /* print messages coming back from server */
  31. int    connected;        /* connected to server */
  32. int    fromatty;        /* input is from a terminal */
  33. int    interactive;        /* interactively prompt on m* cmds */
  34. int    debug;            /* debugging level */
  35. int    bell;            /* ring bell on cmd completion */
  36. int    doglob;            /* glob local file names */
  37. int    autologin;        /* establish user account on connection */
  38. int    proxy;            /* proxy server connection active */
  39. int    proxflag;        /* proxy connection exists */
  40. int    sunique;        /* store files on server with unique name */
  41. int    runique;        /* store local files with unique name */
  42. int    mcase;            /* map upper to lower case for mget names */
  43. int    ntflag;            /* use ntin ntout tables for name translation */
  44. int    mapflag;        /* use mapin mapout templates on file names */
  45. int    code;            /* return/reply code for ftp command */
  46. int    crflag;            /* if 1, strip car. rets. on ascii gets */
  47. char    pasv[64];        /* passive port for proxy data connection */
  48. char    *altarg;        /* argv[1] with no shell-like preprocessing  */
  49. char    ntin[17];        /* input translation table */
  50. char    ntout[17];        /* output translation table */
  51. #include <sys/param.h>
  52. char    mapin[MAXPATHLEN];    /* input map template */
  53. char    mapout[MAXPATHLEN];    /* output map template */
  54. char    typename[32];        /* name of file transfer type */
  55. int    type;            /* file transfer type */
  56. char    structname[32];        /* name of file transfer structure */
  57. int    stru;            /* file transfer structure */
  58. char    formname[32];        /* name of file transfer format */
  59. int    form;            /* file transfer format */
  60. char    modename[32];        /* name of file transfer mode */
  61. int    mode;            /* file transfer mode */
  62. char    bytename[32];        /* local byte size in ascii */
  63. int    bytesize;        /* local byte size in binary */
  64.  
  65. char    *hostname;        /* name of host connected to */
  66.  
  67. struct    servent *sp;        /* service spec for tcp/ftp */
  68.  
  69. #include <setjmp.h>
  70. jmp_buf    toplevel;        /* non-local goto stuff for cmd scanner */
  71.  
  72. char    line[200];        /* input line buffer */
  73. char    *stringbase;        /* current scan point in line buffer */
  74. char    argbuf[200];        /* argument storage buffer */
  75. char    *argbase;        /* current storage point in arg buffer */
  76. int    margc;            /* count of arguments on input line */
  77. char    *margv[20];        /* args parsed from input line */
  78. int     cpend;                  /* flag: if != 0, then pending server reply */
  79. int    mflag;            /* flag: if != 0, then active multi command */
  80.  
  81. int    options;        /* used during socket creation */
  82.  
  83. /*
  84.  * Format of command table.
  85.  */
  86. struct cmd {
  87.     char    *c_name;    /* name of command */
  88.     char    *c_help;    /* help string */
  89.     char    c_bell;        /* give bell when command completes */
  90.     char    c_conn;        /* must be connected to use command */
  91.     char    c_proxy;    /* proxy server may execute */
  92.     int    (*c_handler)();    /* function to call */
  93. };
  94.  
  95. struct macel {
  96.     char mac_name[9];    /* macro name */
  97.     char *mac_start;    /* start of macro in macbuf */
  98.     char *mac_end;        /* end of macro in macbuf */
  99. };
  100.  
  101. int macnum;            /* number of defined macros */
  102. struct macel macros[16];
  103. char macbuf[4096];
  104.  
  105. extern    char *tail();
  106. extern    char *index();
  107. extern    char *rindex();
  108. extern    char *remglob();
  109. extern    int errno;
  110. extern    char *mktemp();
  111. extern    char *strncpy();
  112. extern    char *strncat();
  113. extern    char *strcat();
  114. extern    char *strcpy();
  115.